home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form2
- BackColor = &H00FFFF00&
- Caption = "WAIS for Windows"
- ClientHeight = 4020
- ClientLeft = 510
- ClientTop = 1260
- ClientWidth = 7365
- Height = 4425
- Left = 450
- LinkMode = 1 'Source
- LinkTopic = "Form2"
- ScaleHeight = 4020
- ScaleWidth = 7365
- Top = 915
- Width = 7485
- Begin CommandButton Command1
- Caption = "Begin"
- Height = 495
- Left = 2760
- TabIndex = 0
- Top = 2880
- Width = 1815
- End
- Sub Command1_Click ()
- form2.Hide
- question_form.Show
- End Sub
- Sub Form_Load ()
- AutoRedraw = -1
- FontSize = 24
- st$ = "WAIS for Windows"
- CurrentY = 3
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- CurrentY = CurrentY + TextHeight(st$) / 2
- FontSize = 10
- st$ = "Version 1.03 - 3/18/92"
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- CurrentY = CurrentY + TextHeight(st$) / 2
- st$ = "University of North Carolina at Chapel Hill"
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- CurrentY = CurrentY + TextHeight(st$) / 2
- st$ = "Computing Systems Development Group"
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- CurrentY = CurrentY + TextHeight(st$) / 2
- st$ = "For More Information, Contact:"
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- CurrentY = CurrentY + TextHeight(st$) / 2
- st$ = "Jim_Fullton@unc.edu"
- HalfWidth = TextWidth(st$) / 2
- CurrentX = ScaleWidth / 2 - HalfWidth
- Print st$
- End Sub
-